home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Palettes / Document / DocumentIcon.h < prev    next >
Text File  |  1995-06-12  |  523b  |  26 lines

  1. /* DocumentIcon.h:
  2.  * You may freely copy, distribute, and reuse the code in this example.
  3.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  4.  * fitness for any particular use.
  5.  *
  6.  *
  7.  */
  8.  
  9. #import <appkit/appkit.h>
  10.  
  11. @interface DocumentIcon: Control {
  12.     id        image;
  13.     id        target;
  14.     SEL        action;
  15.     char    *filename;
  16. }
  17.  
  18. - initFrame:(const NXRect *)frameRect;
  19. - drawSelf:(const NXRect *)rects :(int)rectCount;
  20. - free;
  21.  
  22. - (const char *) stringValue;
  23. - setStringValue: (const char *) aString;
  24.  
  25. @end
  26.